home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / hunt103.zip / HUNT.ZIP / HLOCS / HWALL.LOC < prev    next >
Text File  |  1995-11-06  |  5KB  |  117 lines

  1. // BASIC MAP LAYOUT  (HWALL.LOC)
  2. // NOTES ON FORMAT:
  3. //   No line should be longer than 120 characters in length anywhere in here
  4. //   Standard ANSI color and graphics are allowed in location descriptions
  5. //   NAME <...> at the top of this file is currently not being used
  6. //   Start and end each location with BEGIN/END_LOCATION
  7. //   TYPE refers to the type of map location this is: MAP, SHOP, etc.
  8. //    - After TYPE, leave a blank space, then the one word map location type
  9. //   FILE is used if a map location needs a file (ie: a shop needs a list)
  10. //    - If the type requires a file, the filename follows after a blank
  11. //   Start and end each description with BEGIN/END_DESCRIPTION
  12. //    - Everything between the start and end is displayed as is
  13. //    - To have ANSI gfx and color, just use standard ANSI format
  14. //    - Terminate each line with a standard C/R (\n); don't go past 80 columns
  15. //   DIRECTIONS: Start and end each direction list with BEGIN/END_DIRECTION
  16. //    - The first character on each line represents the "direction" available
  17. //    - There should be a space followed by the a file-name and another space
  18. //    - The file-name should be that of another file like this one containing
  19. //        the description of the area a player is currently at
  20. //    - The file-name must be one word only, CAPS aren't a must but I use 'em
  21. //    - The rest of the line is the location corresponding with that direction
  22. //    - Spaces are allowed in the location name
  23.  
  24. NAME HWALL
  25. //---------------------------------------------------------------------------
  26. BEGIN_LOCATION West Wall
  27. TYPE STD
  28. MAP HWALL.MAP
  29.  
  30. BEGIN_DESCRIPTION
  31.    You are standing within the West city wall right now.  City guards and
  32. workers walk past you without a word in a hurry to get where they're going.
  33.    To the [N]orth and [S]outh are passages leading to the north and south
  34. sections of the wall.  There is also a City [T]raining Center here for
  35. exterminators to take advantage of.  To the [E]ast is the gate leading back
  36. into the city.
  37. END_DESCRIPTION
  38.  
  39. BEGIN_DIRECTIONS
  40. [T]raining - HTRAIN City Training Center
  41. [N]orth    - HWALL North Wall
  42. [E]ast     3 HMEDIAN Median Parkway
  43. [S]outh    - HWALL South Wall
  44. END_DIRECTIONS
  45.  
  46. END_LOCATION West Wall
  47.  
  48. //---------------------------------------------------------------------------
  49. BEGIN_LOCATION East Wall
  50. TYPE STD
  51. MAP HWALL.MAP
  52.  
  53. BEGIN_DESCRIPTION
  54.    A few emotionless people walk by you while you stand here at the East
  55. section of the city wall.  Pasasages lead away from here to the [N]orth and
  56. [S]outh sections of the wall.  A gate leading back into the city is directly
  57. [W]est of you.  You also notice a trail of blood leading into a City [B]ounty
  58. Office.  Evidently business is good for them these days.
  59. END_DESCRIPTION
  60.  
  61. BEGIN_DIRECTIONS
  62. [B]ounty - HBOUNTY City Bounty Collection Office
  63. [N]orth  - HWALL North Wall
  64. [W]est   3 HMEDIAL Medial Road
  65. [S]outh  - HWALL South Wall
  66. END_DIRECTIONS
  67.  
  68. END_LOCATION East Wall
  69.  
  70. //---------------------------------------------------------------------------
  71. BEGIN_LOCATION North Wall
  72. TYPE STD
  73. MAP HWALL.MAP
  74.  
  75. BEGIN_DESCRIPTION
  76.    The North section of the city wall is deathly quiet.  The north-side gate,
  77. [S]outh of you here, leads to an especially bad part of the city.  Most folks
  78. try to stear well clear of this area.
  79.    Passages going [E]ast and [W]est lead to the east and west sections of the
  80. city wall.  Tucked quietly into a corner here is a City [B]ank.
  81. END_DESCRIPTION
  82.  
  83. BEGIN_DIRECTIONS
  84. [B]ank  - HBANK City Savings Bank
  85. [E]ast  - HWALL East Wall
  86. [W]est  - HWALL West Wall
  87. [S]outh 5 HHARD Hard Drive
  88. END_DIRECTIONS
  89.  
  90. END_LOCATION North Wall
  91.  
  92. //---------------------------------------------------------------------------
  93. BEGIN_LOCATION South Wall
  94. TYPE STD
  95. MAP HWALL.MAP
  96.  
  97. BEGIN_DESCRIPTION
  98.    The South section of the wall is easily the busiest.  The City [A]rmoury
  99. here does tremendous business, both to exterminators and common folk looking
  100. for that extra bit of protection.  The busiest [H]ealing Center in the city
  101. is also located here.  People line up outside the door for an hour before
  102. getting help. People rush past you and into the passages leading to the [E]ast
  103. and [W]est sections of the city wall.  To your [N]orth is a gate leading back
  104. into the least hazardous district city.
  105. END_DESCRIPTION
  106.  
  107. BEGIN_DIRECTIONS
  108. [A]rmoury - HSHOP City Armoury
  109. [H]ealing - HMED City Medical Clinic
  110. [E]ast    - HWALL East Wall
  111. [W]est    - HWALL West Wall
  112. [N]orth   1 HEASY Easy Street
  113. END_DIRECTIONS
  114.  
  115. END_LOCATION South Wall
  116.  
  117.